home *** CD-ROM | disk | FTP | other *** search
/ Micromanía: 150 Juegos 2010 / 150Juegos_16.iso / Shareware / Shape Smash / shape-smash.swf / scripts / mx / controls / scrollClasses / ScrollBarDirection.as < prev    next >
Encoding:
Text File  |  2010-05-14  |  453 b   |  22 lines

  1. package mx.controls.scrollClasses
  2. {
  3.    import mx.core.mx_internal;
  4.    
  5.    use namespace mx_internal;
  6.    
  7.    public final class ScrollBarDirection
  8.    {
  9.       mx_internal static const VERSION:String = "2.0.1.0";
  10.       
  11.       public static const HORIZONTAL:String = "horizontal";
  12.       
  13.       public static const VERTICAL:String = "vertical";
  14.       
  15.       public function ScrollBarDirection()
  16.       {
  17.          super();
  18.       }
  19.    }
  20. }
  21.  
  22.